Skip to content

Commit

Permalink
fix(starter): ensure linebreak-style is disabled
Browse files Browse the repository at this point in the history
See airbnb/javascript#1224,
xojs/eslint-config-xo#35, and
eslint/eslint#7823 for the sad details.

This doesn't completely solve the greater issue, but should at least
help a little bit to ensure new Electron projects can be used on
Windows
  • Loading branch information
anaisbetts authored and MarshallOfSound committed Jan 2, 2017
1 parent 479d1c4 commit ac7a20b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tmpl/_eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"rules": {
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": [2, { "ignore": ["electron"] }]
"import/no-unresolved": [2, { "ignore": ["electron"] }],
"linebreak-style": 0
}
}

0 comments on commit ac7a20b

Please sign in to comment.