Skip to content

Commit 892a35c

Browse files
build(package): version bump
1 parent 282e935 commit 892a35c

File tree

2 files changed

+15
-52
lines changed

2 files changed

+15
-52
lines changed

lisp/org-newtab.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; Author: Zweihänder <zweidev@zweihander.me>
66
;; Keywords: outlines
77
;; Homepage: https://github.com/Zweihander-Main/org-newtab
8-
;; Version: 0.0.4
8+
;; Version: 0.1.0
99
;; Package-Requires: ((emacs "27.1") (websocket "1.14") (async "1.9.7"))
1010

1111
;; This file is not part of GNU Emacs.

package.json

Lines changed: 14 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "org-newtab",
33
"displayName": "__MSG_extensionName__",
4-
"version": "0.0.4",
4+
"version": "0.1.0",
55
"description": "__MSG_extensionDescription__",
66
"directories": {
77
"test": "test"
@@ -118,10 +118,7 @@
118118
},
119119
"useJSXTextNode": true
120120
},
121-
"plugins": [
122-
"@typescript-eslint",
123-
"react"
124-
],
121+
"plugins": ["@typescript-eslint", "react"],
125122
"extends": [
126123
"eslint:recommended",
127124
"plugin:@typescript-eslint/eslint-recommended",
@@ -135,45 +132,25 @@
135132
],
136133
"overrides": [
137134
{
138-
"files": [
139-
"**/__tests__/**"
140-
],
141-
"plugins": [
142-
"jest"
143-
],
144-
"extends": [
145-
"plugin:jest/recommended",
146-
"plugin:jest/style"
147-
],
135+
"files": ["**/__tests__/**"],
136+
"plugins": ["jest"],
137+
"extends": ["plugin:jest/recommended", "plugin:jest/style"],
148138
"rules": {
149139
"@typescript-eslint/unbound-method": "off",
150140
"jest/unbound-method": "error"
151141
}
152142
}
153143
],
154144
"rules": {
155-
"quotes": [
156-
"error",
157-
"single"
158-
],
159-
"semi": [
160-
"error",
161-
"always"
162-
],
145+
"quotes": ["error", "single"],
146+
"semi": ["error", "always"],
163147
"no-console": [
164148
"error",
165149
{
166-
"allow": [
167-
"warn",
168-
"error",
169-
"debug"
170-
]
150+
"allow": ["warn", "error", "debug"]
171151
}
172152
],
173-
"no-mixed-spaces-and-tabs": [
174-
"error",
175-
"smart-tabs"
176-
],
153+
"no-mixed-spaces-and-tabs": ["error", "smart-tabs"],
177154
"react/prop-types": 0,
178155
"@typescript-eslint/unbound-method": [
179156
"error",
@@ -198,10 +175,7 @@
198175
"arrowParens": "always",
199176
"overrides": [
200177
{
201-
"files": [
202-
"*.yml",
203-
".el"
204-
],
178+
"files": ["*.yml", ".el"],
205179
"options": {
206180
"tabWidth": 2,
207181
"useTabs": false
@@ -210,39 +184,28 @@
210184
]
211185
},
212186
"stylelint": {
213-
"extends": [
214-
"stylelint-config-standard"
215-
],
187+
"extends": ["stylelint-config-standard"],
216188
"rules": {
217189
"comment-whitespace-inside": null,
218190
"declaration-block-no-shorthand-property-overrides": true,
219191
"function-no-unknown": [
220192
true,
221193
{
222-
"ignoreFunctions": [
223-
"/^linear$/"
224-
]
194+
"ignoreFunctions": ["/^linear$/"]
225195
}
226196
],
227197
"no-descending-specificity": null,
228198
"selector-pseudo-class-no-unknown": [
229199
true,
230200
{
231-
"ignorePseudoClasses": [
232-
"global"
233-
]
201+
"ignorePseudoClasses": ["global"]
234202
}
235203
],
236204
"value-keyword-case": null
237205
}
238206
},
239207
"browserslist": {
240-
"production": [
241-
"> 0.2%",
242-
"Firefox ESR",
243-
"not dead",
244-
"not op_mini all"
245-
],
208+
"production": ["> 0.2%", "Firefox ESR", "not dead", "not op_mini all"],
246209
"development": [
247210
"last 1 chrome version",
248211
"last 1 firefox version",

0 commit comments

Comments
 (0)