@studio/eslint-config 5.0.0 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGES.md +29 -1
- package/Session.vim +56 -0
- package/index.js +1 -0
- package/package.json +6 -6
package/CHANGES.md
CHANGED
|
@@ -1,8 +1,36 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 7.0.0
|
|
4
|
+
|
|
5
|
+
- 🍏 [`1cdcfb1`](https://github.com/javascript-studio/eslint-config/commit/1cdcfb1171c7daf0aecf108bc008562789b30b71)
|
|
6
|
+
Update jsdoc
|
|
7
|
+
- 🍏 [`3023a23`](https://github.com/javascript-studio/eslint-config/commit/3023a230e191e51730b1a1b1027ff71639a1cb92)
|
|
8
|
+
Update eslint-plugin-mocha
|
|
9
|
+
- 🍏 [`1899552`](https://github.com/javascript-studio/eslint-config/commit/1899552d102edcba2411ae60b08a59d7d0921b52)
|
|
10
|
+
Upgrade eslint-plugin-n
|
|
11
|
+
- 🍏 [`5b2cc99`](https://github.com/javascript-studio/eslint-config/commit/5b2cc99c833be3a81f6b5183d945b2d69d5f2f7b)
|
|
12
|
+
Upgrade eslint-plugin-jsdoc
|
|
13
|
+
- ✨ [`eb10503`](https://github.com/javascript-studio/eslint-config/commit/eb105030f34eb0f6d85921caa88ccb34dc0fc634)
|
|
14
|
+
Upgrade Studio Changes
|
|
15
|
+
- 🛡️ [`a85468d`](https://github.com/javascript-studio/eslint-config/commit/a85468d7991f665c44a27ad419355d1493124126)
|
|
16
|
+
npm audit
|
|
17
|
+
- 🛡️ [`fa092b1`](https://github.com/javascript-studio/eslint-config/commit/fa092b1529716ad495aa85626b6c14d448180445)
|
|
18
|
+
Bump semver from 7.5.1 to 7.5.3 (dependabot[bot])
|
|
19
|
+
|
|
20
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2024-07-03._
|
|
21
|
+
|
|
22
|
+
## 6.0.0
|
|
23
|
+
|
|
24
|
+
- 💄 [`31acb03`](https://github.com/javascript-studio/eslint-config/commit/31acb035ec51089223407fad1823de438ddab2ea)
|
|
25
|
+
Require blank line between jsdoc comment and tags
|
|
26
|
+
- 🍏 [`d9db688`](https://github.com/javascript-studio/eslint-config/commit/d9db688c7b10fe1e245d38ccc6506bbcaa84457a)
|
|
27
|
+
Upgrade eslint-plugin-jsdoc
|
|
28
|
+
|
|
29
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2023-06-24._
|
|
30
|
+
|
|
3
31
|
## 5.0.0
|
|
4
32
|
|
|
5
|
-
- [`0a58718`](https://github.com/javascript-studio/eslint-config/commit/0a58718ebd1dc186a0282f81999179f3f57dca9a)
|
|
33
|
+
- 🍏 [`0a58718`](https://github.com/javascript-studio/eslint-config/commit/0a58718ebd1dc186a0282f81999179f3f57dca9a)
|
|
6
34
|
Upgrade eslint plugins
|
|
7
35
|
|
|
8
36
|
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2023-05-31._
|
package/Session.vim
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
let SessionLoad = 1
|
|
2
|
+
if &cp | set nocp | endif
|
|
3
|
+
let s:so_save = &g:so | let s:siso_save = &g:siso | setg so=0 siso=0 | setl so=-1 siso=-1
|
|
4
|
+
let v:this_session=expand("<sfile>:p")
|
|
5
|
+
silent only
|
|
6
|
+
silent tabonly
|
|
7
|
+
cd ~/projects/studio/eslint-config
|
|
8
|
+
if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''
|
|
9
|
+
let s:wipebuf = bufnr('%')
|
|
10
|
+
endif
|
|
11
|
+
let s:shortmess_save = &shortmess
|
|
12
|
+
if &shortmess =~ 'A'
|
|
13
|
+
set shortmess=aoOA
|
|
14
|
+
else
|
|
15
|
+
set shortmess=aoO
|
|
16
|
+
endif
|
|
17
|
+
badd +0 README.md
|
|
18
|
+
argglobal
|
|
19
|
+
%argdel
|
|
20
|
+
edit README.md
|
|
21
|
+
argglobal
|
|
22
|
+
balt README.md
|
|
23
|
+
setlocal fdm=manual
|
|
24
|
+
setlocal fde=0
|
|
25
|
+
setlocal fmr={{{,}}}
|
|
26
|
+
setlocal fdi=#
|
|
27
|
+
setlocal fdl=0
|
|
28
|
+
setlocal fml=1
|
|
29
|
+
setlocal fdn=20
|
|
30
|
+
setlocal fen
|
|
31
|
+
silent! normal! zE
|
|
32
|
+
let &fdl = &fdl
|
|
33
|
+
let s:l = 1 - ((0 * winheight(0) + 33) / 67)
|
|
34
|
+
if s:l < 1 | let s:l = 1 | endif
|
|
35
|
+
keepjumps exe s:l
|
|
36
|
+
normal! zt
|
|
37
|
+
keepjumps 1
|
|
38
|
+
normal! 0
|
|
39
|
+
tabnext 1
|
|
40
|
+
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0
|
|
41
|
+
silent exe 'bwipe ' . s:wipebuf
|
|
42
|
+
endif
|
|
43
|
+
unlet! s:wipebuf
|
|
44
|
+
set winheight=1 winwidth=20
|
|
45
|
+
let &shortmess = s:shortmess_save
|
|
46
|
+
let s:sx = expand("<sfile>:p:r")."x.vim"
|
|
47
|
+
if filereadable(s:sx)
|
|
48
|
+
exe "source " . fnameescape(s:sx)
|
|
49
|
+
endif
|
|
50
|
+
let &g:so = s:so_save | let &g:siso = s:siso_save
|
|
51
|
+
nohlsearch
|
|
52
|
+
let g:this_session = v:this_session
|
|
53
|
+
let g:this_obsession = v:this_session
|
|
54
|
+
doautoall SessionLoadPost
|
|
55
|
+
unlet SessionLoad
|
|
56
|
+
" vim: set ft=vim :
|
package/index.js
CHANGED
|
@@ -67,6 +67,7 @@ module.exports = {
|
|
|
67
67
|
'jsdoc/check-indentation': 'warn',
|
|
68
68
|
'jsdoc/check-line-alignment': 'warn',
|
|
69
69
|
'jsdoc/require-hyphen-before-param-description': 'warn',
|
|
70
|
+
'jsdoc/tag-lines': ['warn', 'never', { 'startLines': 1 }],
|
|
70
71
|
|
|
71
72
|
// https://github.com/eslint-community/eslint-plugin-n
|
|
72
73
|
'n/handle-callback-err': 2,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@studio/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "The JavaScript Studio sharable eslint config",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Maximilian Antoni <max@javascript.studio>",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"postversion": "git push --follow-tags && npm publish"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@studio/changes": "^
|
|
15
|
+
"@studio/changes": "^3.0.0"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"eslint": "^8",
|
|
19
|
-
"eslint-plugin-jsdoc": "^
|
|
20
|
-
"eslint-plugin-mocha": "^10",
|
|
21
|
-
"eslint-plugin-n": "^
|
|
22
|
-
"jsdoc": "^4"
|
|
19
|
+
"eslint-plugin-jsdoc": "^48.5.0",
|
|
20
|
+
"eslint-plugin-mocha": "^10.4.3",
|
|
21
|
+
"eslint-plugin-n": "^17.9.0",
|
|
22
|
+
"jsdoc": "^4.0.3"
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|