diff options
| author | 2023-11-03 21:17:06 +0800 | |
|---|---|---|
| committer | 2023-11-03 21:17:06 +0800 | |
| commit | 94071d7ce16c56641d67d488e2bac6be84ffe731 (patch) | |
| tree | d837b71575aba805e18b3db3d056a106d81818fe /examples/with-gatsby/packages/eslint-config-custom | |
| parent | 9f0d43fe099a95ab1516ae951dcb60a89e76a5a5 (diff) | |
| download | HydroRoll-94071d7ce16c56641d67d488e2bac6be84ffe731.tar.gz HydroRoll-94071d7ce16c56641d67d488e2bac6be84ffe731.zip | |
chore: delete useless files
Diffstat (limited to 'examples/with-gatsby/packages/eslint-config-custom')
3 files changed, 0 insertions, 47 deletions
diff --git a/examples/with-gatsby/packages/eslint-config-custom/next.js b/examples/with-gatsby/packages/eslint-config-custom/next.js deleted file mode 100644 index c9523f1..0000000 --- a/examples/with-gatsby/packages/eslint-config-custom/next.js +++ /dev/null @@ -1,11 +0,0 @@ -module.exports = { - extends: ["next", "turbo", "prettier"], - rules: { - "@next/next/no-html-link-for-pages": "off", - }, - parserOptions: { - babelOptions: { - presets: [require.resolve("next/babel")], - }, - }, -}; diff --git a/examples/with-gatsby/packages/eslint-config-custom/package.json b/examples/with-gatsby/packages/eslint-config-custom/package.json deleted file mode 100644 index c519df6..0000000 --- a/examples/with-gatsby/packages/eslint-config-custom/package.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "eslint-config-custom", - "version": "0.0.0", - "private": true, - "main": "index.js", - "license": "MIT", - "files": [ - "next.js", - "gatsby.js" - ], - "dependencies": { - "babel-eslint": "^10.1.0", - "eslint": "^7.23.0", - "eslint-config-next": "13.0.0", - "eslint-config-prettier": "^8.3.0", - "eslint-config-turbo": "latest", - "eslint-plugin-gatsby": "^1.0.2", - "eslint-plugin-react": "7.31.8" - }, - "devDependencies": { - "@types/eslint": "^8.21.2", - "eslint-config-react-app": "^7.0.1", - "typescript": "^4.7.4" - } -} diff --git a/examples/with-gatsby/packages/eslint-config-custom/react.js b/examples/with-gatsby/packages/eslint-config-custom/react.js deleted file mode 100644 index 0307bf6..0000000 --- a/examples/with-gatsby/packages/eslint-config-custom/react.js +++ /dev/null @@ -1,11 +0,0 @@ -module.exports = { - extends: ["react-app", "turbo", "prettier"], - rules: { - "@next/next/no-html-link-for-pages": "off", - }, - parserOptions: { - babelOptions: { - presets: [require.resolve("next/babel")], - }, - }, -}; |