Line break rule fix for windows.

pull/139/head
Mikunj 6 years ago
parent f92e8485f8
commit 2b7cd59b85

@ -39,6 +39,9 @@ module.exports = {
// consistently place operators at end of line except ternaries
'operator-linebreak': 'error',
// Use LF to stay consistent
'linebreak-style': ['error', 'unix'],
quotes: [
'error',
'single',

11
.gitattributes vendored

@ -1 +1,10 @@
* text=auto eol=lf
* text=auto
*.js text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.scss text eol=lf
*.json text eol=lf
*.css text eol=lf
*.html text eol=lf
*.yaml text eol=lf
*.yml text eol=lf

@ -36,3 +36,9 @@ matrix:
cache: false
env:
- YARN_GPG=no
before_install:
- cd ../..
- mv $TRAVIS_REPO_SLUG _old
- git config --global core.autocrlf false
- git clone --depth=50 _old $TRAVIS_REPO_SLUG
- cd $TRAVIS_REPO_SLUG

Loading…
Cancel
Save