annotations-js
Version:
Library that provides annotations functionality in vanilla JavaScript
28 lines (27 loc) • 572 B
JSON
{
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": ["eslint:recommended", "airbnb"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "script"
},
"rules": {
"strict": "off",
"no-restricted-syntax": "off",
"guard-for-in": "off",
"operator-linebreak": "off",
"arrow-parens": "off",
"implicit-arrow-linebreak": "off",
"no-multi-assign": "off",
"no-use-before-define": "off",
"func-names": "off"
}
}