master
jonschlinkert 7 years ago
parent 9c20e62ac0
commit ae8a931c62

@ -1,13 +1,14 @@
# http://editorconfig.org/
root = true root = true
[*] [*]
indent_style = space
end_of_line = lf
charset = utf-8 charset = utf-8
end_of_line = lf
indent_size = 2 indent_size = 2
trim_trailing_whitespace = true indent_style = space
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true
[{**/{actual,fixtures,expected,templates}/**,*.md}] [{**/{actual,fixtures,expected,templates}/**,*.md}]
trim_trailing_whitespace = false trim_trailing_whitespace = false
insert_final_newline = false insert_final_newline = false

@ -1,9 +1,4 @@
{ {
"ecmaFeatures": {
"modules": true,
"experimentalObjectRestSpread": true
},
"env": { "env": {
"browser": false, "browser": false,
"es6": true, "es6": true,

10
.gitignore vendored

@ -1,20 +1,30 @@
# always ignore files # always ignore files
*.DS_Store *.DS_Store
.idea
.vscode
*.sublime-* *.sublime-*
# test related, or directories generated by tests # test related, or directories generated by tests
test/actual test/actual
actual actual
coverage coverage
.nyc*
# npm # npm
node_modules node_modules
npm-debug.log npm-debug.log
# yarn
yarn.lock
yarn-error.log
# misc # misc
_gh_pages _gh_pages
_draft
_drafts
bower_components bower_components
vendor vendor
temp temp
tmp tmp
TODO.md TODO.md
package-lock.json

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2015-2016, Jon Schlinkert. Copyright (c) 2015-2018, Jon Schlinkert.
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

@ -1,8 +1,8 @@
/*! /*!
* parse-git-config <https://github.com/jonschlinkert/parse-git-config> * parse-git-config <https://github.com/jonschlinkert/parse-git-config>
* *
* Copyright (c) 2015 Jon Schlinkert. * Copyright (c) 2015-2018, Jon Schlinkert.
* Licensed under the MIT license. * Released under the MIT License.
*/ */
'use strict'; 'use strict';

@ -5,9 +5,9 @@
"homepage": "https://github.com/jonschlinkert/parse-git-config", "homepage": "https://github.com/jonschlinkert/parse-git-config",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)", "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [ "contributors": [
"Jason Denizac <jason@denizac.org> (https://jden.us)", "Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)", "Sam Holmes (https://samholmes.net)",
"Sam Holmes <sam@samholmes.net> (https://samholmes.net)" "(https://github.com/js-n)"
], ],
"repository": "jonschlinkert/parse-git-config", "repository": "jonschlinkert/parse-git-config",
"bugs": { "bugs": {

Loading…
Cancel
Save