aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-rollup/packages/eslint-config-custom
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-rollup/packages/eslint-config-custom')
-rw-r--r--examples/with-rollup/packages/eslint-config-custom/index.js11
-rw-r--r--examples/with-rollup/packages/eslint-config-custom/package.json15
2 files changed, 0 insertions, 26 deletions
diff --git a/examples/with-rollup/packages/eslint-config-custom/index.js b/examples/with-rollup/packages/eslint-config-custom/index.js
deleted file mode 100644
index c9523f1..0000000
--- a/examples/with-rollup/packages/eslint-config-custom/index.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-rollup/packages/eslint-config-custom/package.json b/examples/with-rollup/packages/eslint-config-custom/package.json
deleted file mode 100644
index 9580d09..0000000
--- a/examples/with-rollup/packages/eslint-config-custom/package.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "name": "eslint-config-custom",
- "version": "0.0.0",
- "main": "index.js",
- "license": "MIT",
- "dependencies": {
- "eslint-config-next": "^12.0.8",
- "eslint-config-prettier": "^8.3.0",
- "eslint-plugin-react": "7.28.0",
- "eslint-config-turbo": "latest"
- },
- "publishConfig": {
- "access": "public"
- }
-}