зеркало из https://github.com/mozilla/bedrock.git
53 строки
937 B
JavaScript
53 строки
937 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"jquery": true,
|
|
"jasmine": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"no-global-assign": 2,
|
|
"indent": [
|
|
2,
|
|
4
|
|
],
|
|
"linebreak-style": [
|
|
2,
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
2,
|
|
"single"
|
|
],
|
|
"semi": [
|
|
2,
|
|
"always"
|
|
],
|
|
"curly": [
|
|
2,
|
|
"all"
|
|
],
|
|
"camelcase": [
|
|
2,
|
|
{
|
|
"properties": "always"
|
|
}
|
|
],
|
|
"eqeqeq": [
|
|
2,
|
|
"smart"
|
|
],
|
|
"one-var-declaration-per-line": [
|
|
2,
|
|
"always"
|
|
],
|
|
"new-cap": 2
|
|
},
|
|
"globals": {
|
|
"Mozilla": true,
|
|
"Mzp": true,
|
|
"site": true
|
|
}
|
|
};
|