Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "extends": [
- "eslint:recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:prettier/recommended",
- "plugin:react/recommended",
- "next",
- "prettier"
- ],
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "ecmaFeatures": {
- "jsx": true,
- "modules": true
- },
- "ecmaVersion": 2019,
- "sourceType": "module"
- },
- "plugins": [
- "jam3",
- "prettier",
- "react",
- "@typescript-eslint"
- ],
- "rules": {
- "linebreak-style": [
- "error",
- "unix"
- ],
- "no-fallthrough": [
- "error",
- {
- "commentPattern": "break[\\s\\w]*omitted"
- }
- ]
- },
- "settings": {
- "react": {
- "version": "17.0"
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement