X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/77182aa8d0fa96b594d1c2582a168e2ebe15964d..852ee620f0a2f6a83cf83eba860ca951b66bb7e2:/.eslintrc.cjs diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 8b5da17..3ccf435 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,26 +1,20 @@ module.exports = { - root: true, - extends: ['@hapi/eslint-config-hapi'], - plugins: ['svelte3'], - overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }], - parser: 'babel-eslint', - parserOptions: { - sourceType: 'module', - ecmaVersion: 2019 - }, - env: { - browser: true, - es2017: true, - node: true - }, - rules: { - indent: [2, 2], - 'no-undef': 2, - 'require-yield': 0 - }, - globals: { - test: true, - describe: true, - expect: true - } + root: true, + parser: '@typescript-eslint/parser', + extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'], + plugins: ['svelte3', '@typescript-eslint'], + ignorePatterns: ['*.cjs'], + overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }], + settings: { + 'svelte3/typescript': () => require('typescript') + }, + parserOptions: { + sourceType: 'module', + ecmaVersion: 2020 + }, + env: { + browser: true, + es2017: true, + node: true + } };