-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from ety001/3.0.0
3.0.0
- Loading branch information
Showing
65 changed files
with
14,912 additions
and
1,399 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,15 @@ | ||
{ | ||
"plugins": [ | ||
"@babel/plugin-proposal-optional-chaining" | ||
], | ||
"presets": [ | ||
["@babel/preset-env", { | ||
"useBuiltIns": "usage", | ||
"corejs": 3, | ||
"targets": { | ||
// https://jamie.build/last-2-versions | ||
"browsers": ["> 0.25%", "not ie 11", "not op_mini all"] | ||
} | ||
}] | ||
] | ||
} |
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,9 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
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,55 @@ | ||
// https://eslint.org/docs/user-guide/configuring | ||
// File taken from https://github.com/vuejs-templates/webpack/blob/1.3.1/template/.eslintrc.js, thanks. | ||
|
||
module.exports = { | ||
root: true, | ||
parserOptions: { | ||
parser: 'babel-eslint', | ||
}, | ||
env: { | ||
browser: true, | ||
webextensions: true, | ||
}, | ||
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention | ||
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules. | ||
extends: ['plugin:vue/essential', 'airbnb-base', 'plugin:prettier/recommended'], | ||
// required to lint *.vue files | ||
plugins: ['vue'], | ||
// check if imports actually resolve | ||
settings: { | ||
'import/resolver': { | ||
webpack: { | ||
config: './webpack.config.js', | ||
}, | ||
}, | ||
}, | ||
// add your custom rules here | ||
rules: { | ||
// don't require .vue extension when importing | ||
'import/extensions': [ | ||
'error', | ||
'always', | ||
{ | ||
js: 'never', | ||
vue: 'never', | ||
}, | ||
], | ||
// disallow reassignment of function parameters | ||
// disallow parameter object manipulation except for specific exclusions | ||
'no-param-reassign': [ | ||
'error', | ||
{ | ||
props: true, | ||
ignorePropertyModificationsFor: [ | ||
'state', // for vuex state | ||
'acc', // for reduce accumulators | ||
'e', // for e.returnvalue | ||
], | ||
}, | ||
], | ||
// disallow default export over named export | ||
'import/prefer-default-export': 'off', | ||
// allow debugger during development | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', | ||
}, | ||
}; |
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 +1,4 @@ | ||
.DS_Store | ||
/node_modules | ||
/*.log | ||
/dist | ||
/dist-zip |
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,5 @@ | ||
{ | ||
"singleQuote": true, | ||
"printWidth": 180, | ||
"trailingComma": "es5" | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,19 @@ | ||
# bookmark-extension | ||
# Review Bookmark | ||
|
||
[![Join the chat at https://gitter.im/ety001/bookmark-extension](https://badges.gitter.im/ety001/bookmark-extension.svg)](https://gitter.im/ety001/bookmark-extension?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
#### A bookmark manager for Chrome | ||
|
||
A bookmark manager for Chrome | ||
|
||
This tool can help you clean up your useless bookmarks. | ||
This tool can help you clean up your useless bookmarks. | ||
It selects one bookmark from your bookmark bar every X times you open new tab(x is your setting) and show a tip to remind you this bookmark. | ||
If you find this bookmark has been out-of-date, you can remove it from your bookmark bar. | ||
|
||
[Dev Plan](https://github.com/ety001/bookmark-extension/wiki/Dev-Plan) | ||
[Suggestion](https://creatorsdaily.com/9999e88d-0b00-46dc-8ff1-e1d311695324#comments) | ||
|
||
--- | ||
|
||
# 温故知新 | ||
|
||
#### 一个 Chrome 书签管理扩展 | ||
|
||
**温故知新** 是一个可以帮助你重温或者整理书签的 Chrome 浏览器插件。每次当你新建立一个标签页面的时候,插件就会从你的书签栏选择一个书签并提示你。你可以选择浏览或者删除。 | ||
|
||
[建议](https://creatorsdaily.com/9999e88d-0b00-46dc-8ff1-e1d311695324#comments) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.