mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2026-02-11 08:49:21 +00:00
21 lines
387 B
JSON
21 lines
387 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["jest"],
|
|
"env": {
|
|
"es6": true,
|
|
"node": true,
|
|
"jest/globals": true
|
|
},
|
|
"extends": ["eslint:recommended"],
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": "off"
|
|
}
|
|
}
|