aid.js
Version:
A Bundle of Javascript util Library to help developers. No dependency to other Libraries.
36 lines (35 loc) • 635 B
JSON
{
"env": {
"browser": true,
"commonjs": true,
"node": true,
"jquery": true,
"amd": true,
"jasmine": true
},
"plugins": ["jasmine"],
"extends": ["eslint:recommended", "plugin:jasmine/recommended"],
"globals": {
"aid": false
},
"rules": {
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"linebreak-style": "off",
"semi": ["error", "always"],
"no-extra-boolean-cast": "off",
"no-useless-escape": "off",
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
]
}
}