Skip to content

Commit

Permalink
build(package): version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Zweihander-Main committed Feb 22, 2024
1 parent 282e935 commit 892a35c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 52 deletions.
2 changes: 1 addition & 1 deletion lisp/org-newtab.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Zweihänder <zweidev@zweihander.me>
;; Keywords: outlines
;; Homepage: https://github.com/Zweihander-Main/org-newtab
;; Version: 0.0.4
;; Version: 0.1.0
;; Package-Requires: ((emacs "27.1") (websocket "1.14") (async "1.9.7"))

;; This file is not part of GNU Emacs.
Expand Down
65 changes: 14 additions & 51 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "org-newtab",
"displayName": "__MSG_extensionName__",
"version": "0.0.4",
"version": "0.1.0",
"description": "__MSG_extensionDescription__",
"directories": {
"test": "test"
Expand Down Expand Up @@ -118,10 +118,7 @@
},
"useJSXTextNode": true
},
"plugins": [
"@typescript-eslint",
"react"
],
"plugins": ["@typescript-eslint", "react"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
Expand All @@ -135,45 +132,25 @@
],
"overrides": [
{
"files": [
"**/__tests__/**"
],
"plugins": [
"jest"
],
"extends": [
"plugin:jest/recommended",
"plugin:jest/style"
],
"files": ["**/__tests__/**"],
"plugins": ["jest"],
"extends": ["plugin:jest/recommended", "plugin:jest/style"],
"rules": {
"@typescript-eslint/unbound-method": "off",
"jest/unbound-method": "error"
}
}
],
"rules": {
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-console": [
"error",
{
"allow": [
"warn",
"error",
"debug"
]
"allow": ["warn", "error", "debug"]
}
],
"no-mixed-spaces-and-tabs": [
"error",
"smart-tabs"
],
"no-mixed-spaces-and-tabs": ["error", "smart-tabs"],
"react/prop-types": 0,
"@typescript-eslint/unbound-method": [
"error",
Expand All @@ -198,10 +175,7 @@
"arrowParens": "always",
"overrides": [
{
"files": [
"*.yml",
".el"
],
"files": ["*.yml", ".el"],
"options": {
"tabWidth": 2,
"useTabs": false
Expand All @@ -210,39 +184,28 @@
]
},
"stylelint": {
"extends": [
"stylelint-config-standard"
],
"extends": ["stylelint-config-standard"],
"rules": {
"comment-whitespace-inside": null,
"declaration-block-no-shorthand-property-overrides": true,
"function-no-unknown": [
true,
{
"ignoreFunctions": [
"/^linear$/"
]
"ignoreFunctions": ["/^linear$/"]
}
],
"no-descending-specificity": null,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global"
]
"ignorePseudoClasses": ["global"]
}
],
"value-keyword-case": null
}
},
"browserslist": {
"production": [
"> 0.2%",
"Firefox ESR",
"not dead",
"not op_mini all"
],
"production": ["> 0.2%", "Firefox ESR", "not dead", "not op_mini all"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
Expand Down

0 comments on commit 892a35c

Please sign in to comment.