mirror of
https://github.com/Nezumi-2711/next-gdrive-index.git
synced 2026-09-22 13:38:38 +00:00
update: remove _ pattern
This commit is contained in:
+1
-1
@@ -37,7 +37,7 @@ const config = {
|
|||||||
],
|
],
|
||||||
"@next/next/no-img-element": "off",
|
"@next/next/no-img-element": "off",
|
||||||
},
|
},
|
||||||
ignorePatterns: ["**/*/_*"],
|
ignorePatterns: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = config;
|
module.exports = config;
|
||||||
|
|||||||
+1
-1
@@ -35,7 +35,7 @@ next-env.d.ts
|
|||||||
/docs
|
/docs
|
||||||
/src/pages/api/legacy/
|
/src/pages/api/legacy/
|
||||||
/**/*/_legacy/
|
/**/*/_legacy/
|
||||||
/**/*/_*/
|
# /**/*/_*/
|
||||||
/data
|
/data
|
||||||
/.*/
|
/.*/
|
||||||
/src/_app
|
/src/_app
|
||||||
|
|||||||
+13
-3
@@ -10,6 +10,7 @@
|
|||||||
"strict": true,
|
"strict": true,
|
||||||
"noUncheckedIndexedAccess": true,
|
"noUncheckedIndexedAccess": true,
|
||||||
"checkJs": true,
|
"checkJs": true,
|
||||||
|
"forceConsistentCasingInFileNames": true,
|
||||||
|
|
||||||
"lib": ["dom", "dom.iterable", "es2022"],
|
"lib": ["dom", "dom.iterable", "es2022"],
|
||||||
"noEmit": true,
|
"noEmit": true,
|
||||||
@@ -23,10 +24,19 @@
|
|||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"paths": {
|
"paths": {
|
||||||
"~/*": ["./src/*"],
|
"~/*": ["./src/*"],
|
||||||
"actions": ["./src/app/actions.ts"],
|
"actions": ["src/app/actions.ts"],
|
||||||
"config": ["./src/config/gIndex.config.ts"]
|
"config": ["./src/config/gIndex.config.ts"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js", ".next/types/**/*.ts"],
|
"include": [
|
||||||
"exclude": ["node_modules", ".next", "**/*/_*"]
|
".eslintrc.cjs",
|
||||||
|
"next-env.d.ts",
|
||||||
|
"**/*.ts",
|
||||||
|
"**/*.tsx",
|
||||||
|
"**/*.js",
|
||||||
|
".next/types/**/*.ts",
|
||||||
|
"**/*.cjs",
|
||||||
|
"**/*.mjs"
|
||||||
|
],
|
||||||
|
"exclude": ["node_modules", ".next"]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user