Skip to content

Instantly share code, notes, and snippets.

@gloriaJun
Last active July 1, 2021 00:47
Show Gist options
  • Save gloriaJun/fd5dd389cf727faba1ad66a3cb7427ee to your computer and use it in GitHub Desktop.
Save gloriaJun/fd5dd389cf727faba1ad66a3cb7427ee to your computer and use it in GitHub Desktop.
react-typescript
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
[
'build',
'ci',
'chore',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
],
],
'type-case': [2, 'always', 'lowerCase'],
'type-empty': [2, 'never'],
'scope-case': [2, 'always', 'lowerCase'],
'subject-empty': [2, 'never'],
'header-max-length': [2, 'always', 100],
},
};
module.exports = {
env: {
browser: true,
node: true,
es6: true,
},
plugins: ['@typescript-eslint', 'react', 'react-hooks', 'import'],
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:import/typescript',
'plugin:prettier/recommended',
],
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
parserOptions: {
tsconfigRootDir: __dirname,
project: './tsconfig.json',
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module', // Allows for the use of imports
},
settings: {
react: {
version: 'detect',
},
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
// 'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
'import/resolver': {
typescript: {
alwaysTryTypes: true, // always try to resolve types under `<root>@types` directory even it doesn't contain any source code, like `@types/unist`
},
// 'babel-module': {},
// node: {
// extensions: ['.js', '.jsx', '.ts', '.tsx'],
// },
},
},
rules: {
// defined the common lint rules
/**
* basic rules
*/
'prettier/prettier': 'error',
// https://eslint.org/docs/rules/no-unused-vars
'@typescript-eslint/no-unused-vars': ['error'],
/**
* typescript
*/
'@typescript-eslint/explicit-module-boundary-types': 'off',
// '@typescript-eslint/no-use-before-define': 'warn',
/**
* import
*/
'import/order': [
'error',
{
groups: [
['builtin', 'external'],
'internal',
'parent',
['sibling', 'index'],
],
'newlines-between': 'always',
// alphabetize: {
// caseInsensitive: true,
// order: 'asc',
// },
},
],
'import/exports-last': 'error',
'import/extensions': [
'error',
'always',
{
js: 'never',
mjs: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
vue: 'never',
},
],
'import/first': 'error',
'import/group-exports': 'off',
'import/newline-after-import': 'error',
// 'import/no-extraneous-dependencies': ['error'],
'import/no-self-import': 'error',
'import/no-cycle': 'error',
// 'import/no-useless-path-segments': ['error', { noUselessIndex: true }],
// 'import/prefer-default-export': 'off',
'import/no-absolute-path': 'error',
'import/no-internal-modules': [
'error',
{
allow: ['src/*'],
},
],
'import/no-mutable-exports': 'error',
'import/no-named-as-default-member': 'error',
'import/no-named-as-default': 'error',
'import/no-named-default': 'error',
'import/no-named-export': 'off',
'import/no-unresolved': ['error', { commonjs: true, caseSensitive: true }],
'import/no-webpack-loader-syntax': 'error',
'import/no-extraneous-dependencies': [
'error',
{
// devDependencies: ["*.js", "src/**/*.test.js"],
devDependencies: true,
optionalDependencies: true,
peerDependencies: true,
bundledDependencies: true,
},
],
},
overrides: [
// Override some TypeScript rules just for .js files
/** story files */
{
files: ['**/*.stories.*'],
rules: {
'import/exports-last': 'off',
'import/no-anonymous-default-export': 'off',
},
},
// {
// files: ['**/*.spec.js', '**/*.spec.ts', '**/.test.js', '**/.test.ts'],
// env: {
// jest: true,
// 'cypress/globals': true,
// },
// extends: ['plugin:jest/recommended', 'plugin:cypress/recommended'],
// plugins: ['jest', 'cypress'],
// rules: {
// '@typescript-eslint/no-unsafe-member-access': 'off',
// '@typescript-eslint/no-unsafe-assignment': 'off',
// },
// },
],
};
module.exports = {
'*.{js,jsx,ts,tsx,json,css,md}': ['prettier --write', 'git add'],
'*.{js,jsx}': ['eslint --fix', 'git add'],
'*.{ts,tsx}': [
() => 'tsc --skipLibCheck --noEmit',
'eslint --fix',
'git add',
],
};
{
"endOfLine": "lf",
"printWidth": 80,
"singleQuote": true,
"semi": true,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "all",
"arrowParens": "always",
"bracketSpacing": true,
"jsxSingleQuote": false,
"jsxBracketSameLine": false,
"newline-before-return": true,
"no-duplicate-variable": [true, "check-parameters"],
"no-var-keyword": true
}
{
"compilerOptions": {
"outDir": "./dist",
"target": "es5",
"module": "esnext",
"types": ["@types/jest", "@types/testing-library__jest-dom"],
"typeRoots": [],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"jsx": "react-jsx",
"sourceMap": true,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"exclude": [],
"include": ["src"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment