Last active
February 5, 2017 19:57
-
-
Save y-temp4/ccb131588d32eb14487a60184109afd6 to your computer and use it in GitHub Desktop.
ESLintの使い方とAtomでの初期設定など ref: http://qiita.com/y-temp4/items/aed2904ff04e9a3f6af1
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
node_modules/ | |
test/ |
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
Show hidden characters
{ | |
"extends": "airbnb", | |
"plugins": [ | |
"react", | |
"jsx-a11y", | |
"import" | |
], | |
"rules": { | |
"react/jsx-no-bind": [ | |
2, | |
{ | |
"allowBind": true | |
} | |
], | |
"react/prefer-stateless-function": [0] | |
} | |
} |
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
$ apm install linter linter-eslint |
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
$ yarn add --dev eslint | |
$ ./node_modules/.bin/eslint --init |
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
$ ./node_modules/.bin/eslint --init | |
? How would you like to configure ESLint? Use a popular style guide | |
? Which style guide do you want to follow? Airbnb | |
? Do you use React? Yes | |
? What format do you want your config file to be in? JSON | |
Installing eslint-plugin-react, eslint-plugin-jsx-a11y, eslint-plugin-import, eslint-config-airbnb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment