Skip to content

Commit dac5006

Browse files
authored
Merge pull request #32 from firstcontributions/improve-stories
2 parents 9fe794a + 20e4283 commit dac5006

37 files changed

+2175
-2067
lines changed

.babelrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"presets": ["next/babel"],
3-
"plugins": ["relay"]
4-
}
2+
"presets": ["next/babel"],
3+
"plugins": ["relay"]
4+
}

.deepsource.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
version = 1
22

3+
exclude_patterns = ["src/queries/__generated__/"]
4+
35
[[analyzers]]
46
name = "test-coverage"
57
enabled = true
@@ -10,4 +12,7 @@ enabled = true
1012

1113
[[analyzers]]
1214
name = "javascript"
13-
enabled = true
15+
enabled = true
16+
17+
[analyzers.meta]
18+
plugins = ["react"]

CODE_OF_CONDUCT.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ appearance, race, religion, or sexual identity and orientation.
1414
Examples of behavior that contributes to creating a positive environment
1515
include:
1616

17-
* Using welcoming and inclusive language
18-
* Being respectful of differing viewpoints and experiences
19-
* Gracefully accepting constructive criticism
20-
* Focusing on what is best for the community
21-
* Showing empathy towards other community members
17+
- Using welcoming and inclusive language
18+
- Being respectful of differing viewpoints and experiences
19+
- Gracefully accepting constructive criticism
20+
- Focusing on what is best for the community
21+
- Showing empathy towards other community members
2222

2323
Examples of unacceptable behavior by participants include:
2424

25-
* The use of sexualized language or imagery and unwelcome sexual attention or
26-
advances
27-
* Trolling, insulting/derogatory comments, and personal or political attacks
28-
* Public or private harassment
29-
* Publishing others' private information, such as a physical or electronic
30-
address, without explicit permission
31-
* Other conduct which could reasonably be considered inappropriate in a
32-
professional setting
25+
- The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
- Trolling, insulting/derogatory comments, and personal or political attacks
28+
- Public or private harassment
29+
- Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
- Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
3333

3434
## Our Responsibilities
3535

relay.config.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module.exports = {
2-
src: './src',
3-
schema: './schema/schema.graphql',
4-
exclude: ['**/node_modules/**', '**/__mocks__/**', '**/__generated__/**'],
5-
// extensions: ['ts', 'tsx'],
6-
language: 'typescript',
7-
artifactDirectory: 'src/queries/__generated__',
8-
};
2+
src: './src',
3+
schema: './schema/schema.graphql',
4+
exclude: ['**/node_modules/**', '**/__mocks__/**', '**/__generated__/**'],
5+
// extensions: ['ts', 'tsx'],
6+
language: 'typescript',
7+
artifactDirectory: 'src/queries/__generated__',
8+
}

0 commit comments

Comments
 (0)