Skip to content

Commit

Permalink
Merge pull request #5 from ety001/3.0.0
Browse files Browse the repository at this point in the history
3.0.0
  • Loading branch information
ety001 authored Jan 19, 2020
2 parents c0cb639 + c657b4b commit 0af6223
Show file tree
Hide file tree
Showing 65 changed files with 14,912 additions and 1,399 deletions.
15 changes: 15 additions & 0 deletions .babelrc
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"]
}
}]
]
}
9 changes: 9 additions & 0 deletions .editorconfig
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
55 changes: 55 additions & 0 deletions .eslintrc.js
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',
},
};
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
.DS_Store
/node_modules
/*.log
/dist
/dist-zip
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"singleQuote": true,
"printWidth": 180,
"trailingComma": "es5"
}
Binary file removed 1280_800.png
Binary file not shown.
Binary file removed 1400_560.png
Binary file not shown.
Binary file removed 440_280.png
Binary file not shown.
Binary file removed 920_680.png
Binary file not shown.
20 changes: 14 additions & 6 deletions README.md
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)
98 changes: 0 additions & 98 deletions bookmark-extension/_locales/en_US/messages.json

This file was deleted.

98 changes: 0 additions & 98 deletions bookmark-extension/_locales/zh_CN/messages.json

This file was deleted.

Loading

0 comments on commit 0af6223

Please sign in to comment.