deep-state-observer
Version:
Deep state observer is an state management library that will fire listeners only when specified object node (which also can be a wildcard) was changed.
39 lines (38 loc) • 881 B
JSON
{
"env": {
"browser": true,
"es6": true,
"es2017": true,
"jest": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/eslint-recommended"],
"globals": {
"page": true,
"browser": true,
"context": true,
"globalThis": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"semi": ["error", "always"],
"quotes": [
"error",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"no-undef": "warn",
"no-unused-vars": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"no-console": "error"
},
"ignorePatterns": ["**/*.d.ts", "node_modules", ".git", ".history", "dist", "types", "./*.js"]
}