123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "env": {
- "browser": true,
- "node": true,
- "commonjs": true
- },
- "extends": [
- "eslint:recommended"
- ],
- "plugins": [
- "@jupyterlab/eslint-plugin-jinja"
- ],
- "parserOptions": {
- "ecmaVersion": 6,
- "sourceType": "module",
- "ecmaFeatures": {
- "modules": true
- }
- },
- "rules": {
- "indent": [
- "error",
- 2
- ],
- "linebreak-style": [
- "error",
- "unix"
- ],
- "quotes": [
- "error",
- "single"
- ],
- "semi": [
- "error",
- "always"
- ],
- "no-console": [
- "error",
- { "allow": ["warn", "error"] }
- ]
- }
- }
|