diff --git a/eslint.config.js b/eslint.config.js index 1355372a..268b9f37 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,6 +1,10 @@ 'use strict'; module.exports = require('eslint-config-sukka').sukka({ + ignores: [ + '**/*.conf', + '**/*.txt' + ], js: { disableNoConsoleInCLI: ['Build/**'] }, diff --git a/tsconfig.json b/tsconfig.json index 3973e4e0..88a58242 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,5 +18,9 @@ "./Source/**/*.js", "./Build/**/*.ts", "./Source/**/*.ts" + ], + "exclude": [ + "node_modules", + "public" ] }