-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
70c4f81
commit e397903
Showing
5 changed files
with
500 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// eslint-disable-next-line no-undef | ||
module.exports = { | ||
extends: [ | ||
'eslint:recommended', | ||
], | ||
env: { | ||
// Your environments (which contains several predefined global variables) | ||
'node': true, | ||
}, | ||
globals: { | ||
// Your global variables (setting to false means it's not allowed to be reassigned) | ||
// | ||
// myGlobal: false | ||
}, | ||
rules: { | ||
// Customize your rules | ||
'quotes': ['error', 'single', { 'avoidEscape': true }], | ||
'semi': ['error', 'never'], | ||
'no-console': ['error'], | ||
'indent': ['error', 2], | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,13 +6,15 @@ | |
"docs:dev": "vuepress dev text", | ||
"dev": "npm run docs:dev", | ||
"docs:build": "vuepress build text", | ||
"build": "npm run docs:build", | ||
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider npm run docs:build", | ||
"preview": "cd output && anywhere 8888" | ||
}, | ||
"repository": "[email protected]:yunnysunny/nodebook.git", | ||
"author": "yunnysunny <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.56.0", | ||
"markdown-it-disable-url-encode": "^1.0.1", | ||
"vuepress": "^1.9.10", | ||
"vuepress-plugin-autometa": "^0.1.13", | ||
|
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
Oops, something went wrong.