Mercurial > obsidian-remember-file-state
comparison .eslintrc @ 19:2a9e941c96ee
Bring new build tools from the sample plugin project
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 18 Mar 2022 19:19:18 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
18:131ae934ea07 | 19:2a9e941c96ee |
---|---|
1 { | |
2 "root": true, | |
3 "parser": "@typescript-eslint/parser", | |
4 "env": { "node": true }, | |
5 "plugins": [ | |
6 "@typescript-eslint" | |
7 ], | |
8 "extends": [ | |
9 "eslint:recommended", | |
10 "plugin:@typescript-eslint/eslint-recommended", | |
11 "plugin:@typescript-eslint/recommended" | |
12 ], | |
13 "parserOptions": { | |
14 "sourceType": "module" | |
15 }, | |
16 "rules": { | |
17 "no-unused-vars": "off", | |
18 "@typescript-eslint/no-unused-vars": ["error", { "args": "none" }], | |
19 "@typescript-eslint/ban-ts-comment": "off", | |
20 "no-prototype-builtins": "off", | |
21 "@typescript-eslint/no-empty-function": "off" | |
22 } | |
23 } |