mirror of
https://github.com/uqbar-dao/nectar.git
synced 2025-01-08 10:39:14 +03:00
28 lines
735 B
JavaScript
28 lines
735 B
JavaScript
/* eslint-env node */
|
|
|
|
module.exports = {
|
|
// root: true,
|
|
// env: { browser: true, es2020: true },
|
|
// extends: [
|
|
// 'eslint:recommended',
|
|
// 'plugin:@typescript-eslint/recommended',
|
|
// 'plugin:@typescript-eslint/recommended-requiring-type-checking',
|
|
// 'plugin:react-hooks/recommended',
|
|
// ],
|
|
// parser: '@typescript-eslint/parser',
|
|
// parserOptions: {
|
|
// ecmaVersion: 'latest',
|
|
// sourceType: 'module',
|
|
// project: true,
|
|
// tsconfigRootDir: __dirname,
|
|
// },
|
|
// plugins: ['react-refresh'],
|
|
// rules: {
|
|
// 'react-refresh/only-export-components': [
|
|
// 'warn',
|
|
// { allowConstantExport: true },
|
|
// ],
|
|
// '@typescript-eslint/no-non-null-assertion': 'off',
|
|
// },
|
|
}
|