-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore!: prepare structure for Nuxt 3 support
- Loading branch information
Showing
41 changed files
with
5,147 additions
and
9,009 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,41 @@ | ||
node_modules | ||
# .gitignore copy | ||
|
||
# custom | ||
dist | ||
.nuxt | ||
coverage | ||
*.log* | ||
examples/**/package-lock.json | ||
|
||
# os | ||
.DS_Store | ||
.code | ||
*.iml | ||
._* | ||
|
||
# node | ||
logs | ||
*.log | ||
node_modules | ||
|
||
# yarn | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
.yarn-integrity | ||
|
||
# npm | ||
npm-debug.log* | ||
package-lock.json | ||
templates/* | ||
sw.js | ||
|
||
# tests | ||
coverage | ||
.eslintcache | ||
.nyc_output | ||
|
||
# .env | ||
.env | ||
.env.test | ||
.env*.local | ||
|
||
# vscode | ||
.vscode/* | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
*.code-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
browser: true, | ||
node: true, | ||
}, | ||
parserOptions: { | ||
parser: "@typescript-eslint/parser", | ||
ecmaVersion: 2020, | ||
}, | ||
extends: [ | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended", | ||
], | ||
plugins: ["eslint-plugin-tsdoc"], | ||
rules: { | ||
"no-console": ["warn", { allow: ["info", "warn", "error"] }], | ||
"no-debugger": "warn", | ||
"no-undef": "off", | ||
curly: "error", | ||
"prefer-const": "error", | ||
"padding-line-between-statements": [ | ||
"error", | ||
{ blankLine: "always", prev: "*", next: "return" }, | ||
], | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{ | ||
argsIgnorePattern: "^_", | ||
varsIgnorePattern: "^_", | ||
}, | ||
], | ||
"@typescript-eslint/no-var-requires": "off", | ||
"tsdoc/syntax": "warn", | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Nuxt Community Discord | ||
- name: 🎙 Nuxt Community Discord | ||
url: https://discord.nuxtjs.org | ||
about: Consider asking questions about the module here. | ||
- name: Prismic Community Forum | ||
about: Nuxt Community Discord is a nice place to ask your questions and get live support by the community! | ||
- name: 👪 Prismic Community Forum | ||
url: https://community.prismic.io | ||
about: Please use Prismic community forum for issues or questions directly related to Prismic. | ||
about: Ask a question about the package or raise an issue directly related to Prismic. You will usually get support there more quickly! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,39 @@ | ||
node_modules | ||
*.iml | ||
.idea | ||
*.log* | ||
# custom | ||
dist | ||
.nuxt | ||
.vscode | ||
examples/**/package-lock.json | ||
|
||
# os | ||
.DS_Store | ||
._* | ||
|
||
# node | ||
logs | ||
*.log | ||
node_modules | ||
|
||
# yarn | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
.yarn-integrity | ||
|
||
# npm | ||
npm-debug.log* | ||
package-lock.json | ||
|
||
# tests | ||
coverage | ||
dist | ||
.eslintcache | ||
.nyc_output | ||
|
||
# .env | ||
.env | ||
.env.test | ||
.env*.local | ||
|
||
# vscode | ||
.vscode/* | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
*.code-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# .gitignore copy | ||
|
||
# custom | ||
dist | ||
.nuxt | ||
examples/**/package-lock.json | ||
|
||
# os | ||
.DS_Store | ||
._* | ||
|
||
# node | ||
logs | ||
*.log | ||
node_modules | ||
|
||
# yarn | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
.yarn-integrity | ||
|
||
# npm | ||
npm-debug.log* | ||
package-lock.json | ||
|
||
# tests | ||
coverage | ||
.eslintcache | ||
.nyc_output | ||
|
||
# .env | ||
.env | ||
.env.test | ||
.env*.local | ||
|
||
# vscode | ||
.vscode/* | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
*.code-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"plugins": ["prettier-plugin-jsdoc"], | ||
"jsdocSeparateReturnsFromParam": true, | ||
"jsdocSeparateTagGroups": true, | ||
"jsdocSingleLineComment": false, | ||
"tsdoc": true, | ||
"printWidth": 80, | ||
"useTabs": true, | ||
"semi": true, | ||
"singleQuote": false, | ||
"quoteProps": "as-needed", | ||
"jsxSingleQuote": false, | ||
"trailingComma": "all", | ||
"bracketSpacing": true, | ||
"bracketSameLine": false, | ||
"arrowParens": "always", | ||
"requirePragma": false, | ||
"insertPragma": false, | ||
"htmlWhitespaceSensitivity": "css", | ||
"endOfLine": "lf" | ||
} |
Oops, something went wrong.