Mercurial > obsidian-remember-file-state
annotate .eslintrc @ 60:e431a6fa4b51 default tip
Added tag 1.1.2 for changeset 1d6fe880946f
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 21 Nov 2023 17:25:00 -0800 |
parents | 2a9e941c96ee |
children |
rev | line source |
---|---|
19
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
1 { |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
2 "root": true, |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
3 "parser": "@typescript-eslint/parser", |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
4 "env": { "node": true }, |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
5 "plugins": [ |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
6 "@typescript-eslint" |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
7 ], |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
8 "extends": [ |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
9 "eslint:recommended", |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
10 "plugin:@typescript-eslint/eslint-recommended", |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
11 "plugin:@typescript-eslint/recommended" |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
12 ], |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
13 "parserOptions": { |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
14 "sourceType": "module" |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
15 }, |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
16 "rules": { |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
17 "no-unused-vars": "off", |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
18 "@typescript-eslint/no-unused-vars": ["error", { "args": "none" }], |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
19 "@typescript-eslint/ban-ts-comment": "off", |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
20 "no-prototype-builtins": "off", |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
21 "@typescript-eslint/no-empty-function": "off" |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
22 } |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
23 } |