This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
risk-dice-modifier/.eslintrc.js

34 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-06-05 00:52:11 +02:00
// SPDX-FileCopyrightText: 2021 Johannes Loher <johannes.loher@fg4f.de>
//
// SPDX-License-Identifier: MIT
2021-02-07 16:01:14 +01:00
module.exports = {
2021-02-07 16:04:47 +01:00
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
2021-02-07 16:01:14 +01:00
parserOptions: {
ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
2021-02-07 16:04:47 +01:00
sourceType: 'module', // Allows for the use of imports
2021-02-07 16:01:14 +01:00
},
extends: [
2021-02-07 16:04:47 +01:00
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
2021-02-07 16:01:14 +01:00
],
2021-02-07 16:04:47 +01:00
plugins: ['@typescript-eslint'],
2021-02-07 16:01:14 +01:00
rules: {
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
// e.g. "@typescript-eslint/explicit-function-return-type": "off",
},
2021-05-23 02:46:03 +02:00
overrides: [
{
files: ['./*.js'],
rules: {
'@typescript-eslint/no-var-requires': 'off',
},
},
],
2021-02-07 16:01:14 +01:00
};