Skip to content

Commit f2f1537

Browse files
authored
chore: run prettier (#2659)
* chore: run prettier * fix test
1 parent f8baee6 commit f2f1537

File tree

1,405 files changed

+103593
-103576
lines changed

Some content is hidden

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

1,405 files changed

+103593
-103576
lines changed

.prettierrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"printWidth": 80,
3-
"useTabs": true,
3+
"useTabs": false,
4+
"tabWidth": 2,
45
"semi": true,
56
"singleQuote": true,
67
"trailingComma": "none",

CONTRIBUTING.md

+31-31
Original file line numberDiff line numberDiff line change
@@ -60,31 +60,31 @@ Classes should contain a jsdoc comment block for each attribute. For example:
6060
* @param {Object} check CheckResult specification
6161
*/
6262
function CheckResult(check) {
63-
'use strict';
64-
65-
/**
66-
* ID of the check. Unique in the context of a rule.
67-
* @type {String}
68-
*/
69-
this.id = check.id;
70-
71-
/**
72-
* Any data passed by Check (by calling `this.data()`)
73-
* @type {Mixed}
74-
*/
75-
this.data = null;
76-
77-
/**
78-
* Any node that is related to the Check, specified by calling `this.relatedNodes([HTMLElement...])` inside the Check
79-
* @type {Array}
80-
*/
81-
this.relatedNodes = [];
82-
83-
/**
84-
* The return value of the Check's evaluate function
85-
* @type {Mixed}
86-
*/
87-
this.result = null;
63+
'use strict';
64+
65+
/**
66+
* ID of the check. Unique in the context of a rule.
67+
* @type {String}
68+
*/
69+
this.id = check.id;
70+
71+
/**
72+
* Any data passed by Check (by calling `this.data()`)
73+
* @type {Mixed}
74+
*/
75+
this.data = null;
76+
77+
/**
78+
* Any node that is related to the Check, specified by calling `this.relatedNodes([HTMLElement...])` inside the Check
79+
* @type {Array}
80+
*/
81+
this.relatedNodes = [];
82+
83+
/**
84+
* The return value of the Check's evaluate function
85+
* @type {Mixed}
86+
*/
87+
this.result = null;
8888
}
8989
```
9090

@@ -136,12 +136,12 @@ Installing axe to run accessibility tests in your TypeScript project should be a
136136
import * as axe from 'axe-core';
137137

138138
describe('Module', () => {
139-
it('should have no accessibility violations', done => {
140-
axe.run(compiledFixture).then(results => {
141-
expect(results.violations.length).toBe(0);
142-
done();
143-
}, done);
144-
});
139+
it('should have no accessibility violations', done => {
140+
axe.run(compiledFixture).then(results => {
141+
expect(results.violations.length).toBe(0);
142+
done();
143+
}, done);
144+
});
145145
});
146146
```
147147

0 commit comments

Comments
 (0)