Skip to content

Commit 70cc66c

Browse files
committed
🎉 Create project
0 parents  commit 70cc66c

File tree

14 files changed

+8417
-0
lines changed

14 files changed

+8417
-0
lines changed

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 4
8+
indent_style = space
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false
14+
15+
[*.json]
16+
indent_size = 2

.eslintrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
parser: 'typescript-eslint-parser',
3+
extends: ['@zazen/eslint-config'],
4+
plugins: ['typescript'],
5+
rules: {},
6+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
dist/

.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
src
2+
test
3+
tsconfig.json

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
message = "🔖 Release %s"

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
package-lock.json
2+
package.json

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Change Log
2+
3+
[![Keep a Changelog][img-changelog]][url-changelog]
4+
[![Semantic Versioning][img-semver]][url-semver]
5+
6+
All notable changes to this project will be documented in this file.
7+
8+
<!--
9+
## 0.1.0 — 2018-09-19
10+
11+
### 🎉 Initial project release
12+
-->
13+
14+
[img-changelog]: https://img.shields.io/badge/keep-a%20changelog-ef5e39.svg?style=flat-square
15+
16+
[img-semver]: https://img.shields.io/badge/semantic-versioning-333333.svg?style=flat-square
17+
18+
[url-changelog]: https://keepachangelog.com
19+
20+
[url-semver]: https://semver.org

LICENSE.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
ISC License
2+
3+
Copyright Jeff Nelson
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# import-sort-style-python
2+
3+
[![npm version][npm-img]][npm-url]
4+
[![npm downloads][npm-dls]][npm-url]
5+
6+
A style for [import-sort][] that groups and sorts imports by module, inspired by
7+
[isort][]’s grouping style:
8+
9+
1. Node standard modules
10+
2. Framework modules
11+
3. Third-party modules
12+
4. First-party modules
13+
5. Explicity local modules
14+
15+
[npm-url]: https://www.npmjs.com/package/import-sort-style-python
16+
17+
[npm-img]: https://img.shields.io/npm/v/import-sort-style-python.svg?style=flat-square
18+
19+
[npm-dls]: https://img.shields.io/npm/dt/import-sort-style-python.svg?style=flat-square
20+
21+
[import-sort]: https://github.com/renke/import-sort
22+
23+
[isort]: https://timothycrosley.github.io/isort/#how-does-isort-work

0 commit comments

Comments
 (0)