This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrei Neculau (anu)
committed
Jul 31, 2017
1 parent
455ac67
commit b09aaf7
Showing
27 changed files
with
535 additions
and
503 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module.exports = { | ||
extends: [ | ||
'./configs/basic.js', | ||
'./configs/babel.js', | ||
'./configs/async-await.js', | ||
'./configs/dependencies.js', | ||
'./configs/import.js', | ||
'./configs/no-null.js', | ||
'./configs/max-len-2.js', | ||
'./configs/browser.js', | ||
'./no-ide.js' // REMOVE after https://github.com/eslint/eslint/issues/7549 | ||
] | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module.exports = { | ||
plugins: [ | ||
'async-await' | ||
], | ||
|
||
rules: { | ||
'async-await/space-after-await': 'error', | ||
'async-await/space-after-async': 'error' | ||
} | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module.exports = { | ||
plugins: [ | ||
'babel' | ||
], | ||
|
||
parser: 'babel-eslint', | ||
|
||
parserOptions: { | ||
sourceType: 'module' | ||
}, | ||
|
||
rules: { | ||
'babel/new-cap': 'error', | ||
'babel/object-curly-spacing': 'error', | ||
'babel/semi': 'error', | ||
'new-cap': 'off', | ||
'object-curly-spacing': 'off', | ||
semi: 'error' // why not off? | ||
} | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.