Skip to content

Commit 951f48d

Browse files
Release 17.1.2-beta
0 parents  commit 951f48d

2,674 files changed

Lines changed: 898841 additions & 0 deletions

File tree

Some content is hidden

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

.drone.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Install: http://readme.drone.io/0.5/install/cli/
2+
# Docs: http://readme.drone.io/0.5/
3+
# Local run: drone exec --matrix TARGET=test
4+
5+
pipeline:
6+
7+
cache-restore:
8+
image: private/blob-cache-plugin
9+
restore: true
10+
when:
11+
event: [ push, pull_request, tag ]
12+
13+
clone:
14+
image: plugins/git
15+
16+
build:
17+
image: devexpress/devextreme-build:17_1
18+
pull: true
19+
commands: ./docker-ci.sh
20+
21+
cache-rebuild:
22+
image: private/blob-cache-plugin
23+
rebuild: true
24+
when:
25+
event: [ push ]
26+
27+
matrix:
28+
include:
29+
- { TARGET: lint }
30+
- { TARGET: test, CONSTEL: misc }
31+
- { TARGET: test, CONSTEL: ui }
32+
- { TARGET: test, CONSTEL: ui.editors }
33+
- { TARGET: test, CONSTEL: ui.grid }
34+
- { TARGET: test, CONSTEL: ui.scheduler }
35+
- { TARGET: test, CONSTEL: viz }

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
indent_style = space
8+
indent_size = 4
9+
10+
[*.{json,yml}]
11+
indent_size = 2

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
artifacts/*
2+
js/viz/docs/*
3+
node_modules/*
4+
vendor/*

0 commit comments

Comments
 (0)