Last active
November 30, 2017 12:46
-
-
Save jerrylau91/9768b83013d3b82aa49871bf9d687c34 to your computer and use it in GitHub Desktop.
eslint rules based airbnb javascript style guide
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
{ | |
"env": { | |
"browser": true, | |
"commonjs": true, | |
"es6": true, | |
"node": true | |
}, | |
"extends": [ | |
"airbnb" // 以社区广泛使用的 airbnb 风格指南作为基础 | |
], | |
"plugins": [ | |
"import", | |
"react", | |
"jsx-a11y" | |
], | |
"globals": { // 定义全局属性 | |
"__DEV__": true, | |
"__dirname": true, | |
"global": true, | |
"process": true, | |
"window": true | |
}, | |
"rules": { // 需要的规则在这里添加 | |
"semi": "off" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
仅供参考,如有不足,敬请指正。