mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
20 lines
508 B
JavaScript
20 lines
508 B
JavaScript
/**@type {import('eslint').Linter.Config} */
|
|
// eslint-disable-next-line no-undef
|
|
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: [
|
|
'@typescript-eslint',
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
],
|
|
rules: {
|
|
'semi': [2, "always"],
|
|
'@typescript-eslint/no-unused-vars': 0,
|
|
'@typescript-eslint/no-explicit-any': 0,
|
|
'@typescript-eslint/explicit-module-boundary-types': 0,
|
|
'@typescript-eslint/no-non-null-assertion': 0,
|
|
}
|
|
};
|