Skip to content

Commit 0b9f9e6

Browse files
committedMar 25, 2019
Merge branch 'minibook'
2 parents 037ab2d + 44e2d30 commit 0b9f9e6

File tree

258 files changed

+9328
-679
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

258 files changed

+9328
-679
lines changed
 

‎.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = {
1212

1313
// https://eslint.org/docs/rules/no-plusplus
1414
// allows unary operators ++ and -- in the afterthought (final expression) of a for loop.
15-
"allowForLoopAfterthoughts": true,
15+
"no-plusplus": [2, { "allowForLoopAfterthoughts": true }],
1616

1717
// Allow for..of
1818
"no-restricted-syntax": [0, "ForOfStatement"],

‎.gitignore

Lines changed: 150 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,151 @@
11
node_modules
2-
.idea/
3-
coverage/
2+
.idea
3+
coverage
4+
dist
5+
_book
6+
.DS_Store
7+
8+
# https://raw.githubusercontent.com/mraible/infoq-mini-book/master/.gitignore
9+
######################
10+
# Project Specific
11+
######################
12+
/src/main/webapp/dist
13+
14+
######################
15+
# Node
16+
######################
17+
/node_modules/**
18+
19+
######################
20+
# Eclipse
21+
######################
22+
*.pydevproject
23+
.project
24+
.metadata
25+
/bin/**
26+
/tmp/**
27+
/tmp/**/*
28+
*.tmp
29+
*.bak
30+
*.swp
31+
*~.nib
32+
local.properties
33+
.classpath
34+
.settings/**
35+
.loadpath
36+
37+
# External tool builders
38+
.externalToolBuilders/**
39+
40+
# Locally stored "Eclipse launch configurations"
41+
*.launch
42+
43+
# CDT-specific
44+
.cproject
45+
46+
# PDT-specific
47+
.buildpath
48+
49+
######################
50+
# Intellij
51+
######################
52+
.idea/**
53+
*.iml
54+
*.iws
55+
*.ipr
56+
*.ids
57+
*.orig
58+
59+
######################
60+
# Maven
61+
######################
62+
/log/**
63+
/target/**
64+
65+
######################
66+
# Gradle
67+
######################
68+
.gradle/**
69+
70+
######################
71+
# Ruby
72+
######################
73+
/.bundle/
74+
/Gemfile.lock
75+
76+
######################
77+
# Package Files
78+
######################
79+
*.jar
80+
*.war
81+
*.ear
82+
*.db
83+
84+
######################
85+
# Windows
86+
######################
87+
# Windows image file caches
88+
Thumbs.db
89+
90+
# Folder config file
91+
Desktop.ini
92+
93+
######################
94+
# Mac OSX
95+
######################
96+
.DS_Store
97+
.svn
98+
99+
# Thumbnails
100+
._*
101+
102+
# Files that might appear on external disk
103+
.Spotlight-V100
104+
.Trashes
105+
106+
######################
107+
# Directories
108+
######################
109+
/asciidoctor-pdf/
110+
/build/**
111+
/bin/**
112+
/deploy/**
113+
114+
######################
115+
# Logs
116+
######################
117+
*.log
118+
119+
######################
120+
# Others
121+
######################
122+
*.class
123+
*.*~
124+
*~
125+
.merge_file*
126+
127+
######################
128+
# My files
129+
# ln -s ~/OneDrive/Authoring/dsaJS/asciidoc/book/Makefile .
130+
# ln -s ~/OneDrive/Authoring/dsaJS/asciidoc/book/Gemfile .
131+
# ln -s ~/OneDrive/Authoring/dsaJS/asciidoc/book/Gemfile.lock .
132+
# ln -s ~/OneDrive/Authoring/dsaJS/asciidoc/book/_conf .
133+
# ln -s ~/OneDrive/Authoring/dsaJS/asciidoc/book/_resources .
134+
# ln -s ~/OneDrive/Authoring/dsaJS/asciidoc/book/extensions .
135+
# ln -s ~/OneDrive/Authoring/dsaJS/asciidoc/book/fonts .
136+
# ln -s ~/OneDrive/Authoring/dsaJS/asciidoc/book/images .
137+
######################
138+
Gemfile
139+
Gemfile.lock
140+
Makefile
141+
_conf
142+
_resources
143+
extensions
144+
fonts
145+
images
146+
147+
148+
######################
149+
# Gradle Wrapper
150+
######################
151+
!gradle/wrapper/gradle-wrapper.jar

0 commit comments

Comments
 (0)
Please sign in to comment.