gitlab-org--gitlab-foss/.eslintrc

51 lines
1.0 KiB
Plaintext
Raw Normal View History

{
"env": {
"jquery": true,
"browser": true,
"es6": true
},
"extends": [
"airbnb-base",
"plugin:vue/recommended"
],
"globals": {
"__webpack_public_path__": true,
"gl": false,
"gon": false,
"localStorage": false
2016-11-22 13:56:03 -05:00
},
"parserOptions": {
2018-01-09 06:58:34 -05:00
"parser": "babel-eslint"
},
2016-11-22 13:56:03 -05:00
"plugins": [
"filenames",
2017-04-06 18:03:23 -04:00
"import",
"html",
"promise"
2016-11-22 13:56:03 -05:00
],
"settings": {
2018-01-04 14:07:28 -05:00
"html/html-extensions": [".html", ".html.raw"],
"import/resolver": {
"webpack": {
"config": "./config/webpack.config.js"
}
}
},
2016-11-22 13:56:03 -05:00
"rules": {
2017-02-14 14:10:57 -05:00
"filenames/match-regex": [2, "^[a-z0-9_]+$"],
"import/no-commonjs": "error",
"no-multiple-empty-lines": ["error", { "max": 1 }],
"promise/catch-or-return": "error",
"no-underscore-dangle": ["error", { "allow": ["__", "_links"]}],
2018-01-04 14:50:06 -05:00
"vue/html-self-closing": ["error", {
"html": {
"void": "always",
2018-01-06 13:59:49 -05:00
"normal": "never",
2018-01-04 14:50:06 -05:00
"component": "always"
},
"svg": "always",
2018-01-06 13:59:49 -05:00
"math": "always"
2018-01-04 14:50:06 -05:00
}]
}
}