Skip to content

Commit 371cf2c

Browse files
committed
run update
1 parent 4607a7f commit 371cf2c

File tree

7 files changed

+171
-47
lines changed

7 files changed

+171
-47
lines changed

.editorconfig

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
# http://editorconfig.org
21
root = true
32

43
[*]
54
indent_style = space
6-
indent_size = 2
75
end_of_line = lf
86
charset = utf-8
7+
indent_size = 2
98
trim_trailing_whitespace = true
109
insert_final_newline = true
1110

12-
[*.md]
13-
trim_trailing_whitespace = false
14-
15-
[test/fixtures/*]
16-
insert_final_newline = false
11+
[{**/{actual,fixtures,expected,templates}/**,*.md}]
1712
trim_trailing_whitespace = false
13+
insert_final_newline = false

.eslintrc.json

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
{
2+
"ecmaFeatures": {
3+
"modules": true,
4+
"experimentalObjectRestSpread": true
5+
},
6+
7+
"env": {
8+
"browser": false,
9+
"es6": true,
10+
"node": true,
11+
"mocha": true
12+
},
13+
14+
"globals": {
15+
"document": false,
16+
"navigator": false,
17+
"window": false
18+
},
19+
20+
"rules": {
21+
"accessor-pairs": 2,
22+
"arrow-spacing": [2, { "before": true, "after": true }],
23+
"block-spacing": [2, "always"],
24+
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
25+
"comma-dangle": [2, "never"],
26+
"comma-spacing": [2, { "before": false, "after": true }],
27+
"comma-style": [2, "last"],
28+
"constructor-super": 2,
29+
"curly": [2, "multi-line"],
30+
"dot-location": [2, "property"],
31+
"eol-last": 2,
32+
"eqeqeq": [2, "allow-null"],
33+
"generator-star-spacing": [2, { "before": true, "after": true }],
34+
"handle-callback-err": [2, "^(err|error)$" ],
35+
"indent": [2, 2, { "SwitchCase": 1 }],
36+
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
37+
"keyword-spacing": [2, { "before": true, "after": true }],
38+
"new-cap": [2, { "newIsCap": true, "capIsNew": false }],
39+
"new-parens": 2,
40+
"no-array-constructor": 2,
41+
"no-caller": 2,
42+
"no-class-assign": 2,
43+
"no-cond-assign": 2,
44+
"no-const-assign": 2,
45+
"no-control-regex": 2,
46+
"no-debugger": 2,
47+
"no-delete-var": 2,
48+
"no-dupe-args": 2,
49+
"no-dupe-class-members": 2,
50+
"no-dupe-keys": 2,
51+
"no-duplicate-case": 2,
52+
"no-empty-character-class": 2,
53+
"no-eval": 2,
54+
"no-ex-assign": 2,
55+
"no-extend-native": 2,
56+
"no-extra-bind": 2,
57+
"no-extra-boolean-cast": 2,
58+
"no-extra-parens": [2, "functions"],
59+
"no-fallthrough": 2,
60+
"no-floating-decimal": 2,
61+
"no-func-assign": 2,
62+
"no-implied-eval": 2,
63+
"no-inner-declarations": [2, "functions"],
64+
"no-invalid-regexp": 2,
65+
"no-irregular-whitespace": 2,
66+
"no-iterator": 2,
67+
"no-label-var": 2,
68+
"no-labels": 2,
69+
"no-lone-blocks": 2,
70+
"no-mixed-spaces-and-tabs": 2,
71+
"no-multi-spaces": 2,
72+
"no-multi-str": 2,
73+
"no-multiple-empty-lines": [2, { "max": 1 }],
74+
"no-native-reassign": 0,
75+
"no-negated-in-lhs": 2,
76+
"no-new": 2,
77+
"no-new-func": 2,
78+
"no-new-object": 2,
79+
"no-new-require": 2,
80+
"no-new-wrappers": 2,
81+
"no-obj-calls": 2,
82+
"no-octal": 2,
83+
"no-octal-escape": 2,
84+
"no-proto": 0,
85+
"no-redeclare": 2,
86+
"no-regex-spaces": 2,
87+
"no-return-assign": 2,
88+
"no-self-compare": 2,
89+
"no-sequences": 2,
90+
"no-shadow-restricted-names": 2,
91+
"no-spaced-func": 2,
92+
"no-sparse-arrays": 2,
93+
"no-this-before-super": 2,
94+
"no-throw-literal": 2,
95+
"no-trailing-spaces": 0,
96+
"no-undef": 2,
97+
"no-undef-init": 2,
98+
"no-unexpected-multiline": 2,
99+
"no-unneeded-ternary": [2, { "defaultAssignment": false }],
100+
"no-unreachable": 2,
101+
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
102+
"no-useless-call": 0,
103+
"no-with": 2,
104+
"one-var": [0, { "initialized": "never" }],
105+
"operator-linebreak": [0, "after", { "overrides": { "?": "before", ":": "before" } }],
106+
"padded-blocks": [0, "never"],
107+
"quotes": [2, "single", "avoid-escape"],
108+
"radix": 2,
109+
"semi": [2, "always"],
110+
"semi-spacing": [2, { "before": false, "after": true }],
111+
"space-before-blocks": [2, "always"],
112+
"space-before-function-paren": [2, "never"],
113+
"space-in-parens": [2, "never"],
114+
"space-infix-ops": 2,
115+
"space-unary-ops": [2, { "words": true, "nonwords": false }],
116+
"spaced-comment": [0, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
117+
"use-isnan": 2,
118+
"valid-typeof": 2,
119+
"wrap-iife": [2, "any"],
120+
"yoda": [2, "never"]
121+
}
122+
}

.gitignore

+23-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
1+
# always ignore files
2+
*.DS_Store
13
*.sublime-*
2-
_gh_pages
4+
5+
# test related, or directories generated by tests
6+
test/actual
37
actual
4-
bower_components
8+
coverage
9+
.nyc*
10+
11+
# npm
512
node_modules
613
npm-debug.log
14+
15+
# yarn
16+
yarn.lock
17+
yarn-error.log
18+
19+
# misc
20+
_gh_pages
21+
_draft
22+
_drafts
23+
bower_components
24+
vendor
725
temp
8-
test/actual
926
tmp
1027
TODO.md
11-
vendor
12-
*.DS_Store
28+
29+
examples/*/dist
30+
examples/*/site

.jshintrc

-18
This file was deleted.

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
sudo: false
2+
os:
3+
- linux
4+
- osx
5+
language: node_js
6+
node_js:
7+
- node
8+
- '7'
9+
- '6'
10+
- '5'
11+
- '4'
12+
- '0.12'
13+
- '0.10'

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2015, Jon Schlinkert
3+
Copyright (c) 2014-2015, 2017, Jon Schlinkert
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

package.json

+9-16
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,32 @@
33
"description": "Regular expression for matching file names, with or without extension.",
44
"version": "2.0.0",
55
"homepage": "https://github.com/regexhq/filename-regex",
6-
"author": {
7-
"name": "Jon Schlinkert",
8-
"url": "https://github.com/jonschlinkert"
9-
},
10-
"repository": {
11-
"type": "git",
12-
"url": "git://github.com/regexhq/filename-regex.git"
13-
},
6+
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7+
"repository": "regexhq/filename-regex",
148
"bugs": {
159
"url": "https://github.com/regexhq/filename-regex/issues"
1610
},
17-
"license": {
18-
"type": "MIT",
19-
"url": "https://github.com/regexhq/filename-regex/blob/master/LICENSE"
20-
},
11+
"license": "MIT",
12+
"files": [
13+
"index.js"
14+
],
2115
"main": "index.js",
2216
"engines": {
2317
"node": ">=0.10.0"
2418
},
25-
"files": ["index.js"],
2619
"scripts": {
27-
"test": "mocha -R spec"
20+
"test": "mocha"
2821
},
2922
"keywords": [
3023
"basename",
31-
"regular expression",
3224
"file",
3325
"filename",
3426
"filepath",
3527
"match",
3628
"name",
3729
"path",
3830
"regex",
39-
"regexp"
31+
"regexp",
32+
"regular expression"
4033
]
4134
}

0 commit comments

Comments
 (0)