mirror of
https://github.com/storybookjs/storybook.git
synced 2025-02-06 14:13:15 +08:00
29 lines
560 B
JavaScript
29 lines
560 B
JavaScript
module.exports = {
|
|
"extends": [
|
|
"./node_modules/eslint-config-airbnb-base/rules/es6.js",
|
|
],
|
|
"plugins": [
|
|
"prettier",
|
|
],
|
|
"parser": "babel-eslint",
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"node": true,
|
|
},
|
|
"rules": {
|
|
"strict": 0,
|
|
"prettier/prettier": ["warn", {
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"bracketSpacing": true,
|
|
"trailingComma": "all",
|
|
"singleQuote": true,
|
|
}],
|
|
"quotes": ["warn", "single"],
|
|
"arrow-parens": ["warn", "as-needed"],
|
|
},
|
|
}
|