Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
humanities
gargantext
Commits
dc47c71a
Commit
dc47c71a
authored
Dec 15, 2017
by
sim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DOC] Pylint
parent
08bf2e02
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
1 deletion
+21
-1
INSTALL.md
INSTALL.md
+21
-1
No files found.
INSTALL.md
View file @
dc47c71a
...
@@ -220,10 +220,30 @@ options won't be taken into account by postgrest itself):
...
@@ -220,10 +220,30 @@ options won't be taken into account by postgrest itself):
For general options, see
<https://postgrest.com/en/v4.3/install.html#configuration>
.
For general options, see
<https://postgrest.com/en/v4.3/install.html#configuration>
.
## Customize dev environment
## Development
### Customize dev environment
To install specific packages without messing with dependencies, just use pip.
To install specific packages without messing with dependencies, just use pip.
For example, to install ipython or bpython shells locally:
For example, to install ipython or bpython shells locally:
pipenv run pip install ipython
pipenv run pip install ipython
pipenv run pip install bpython
pipenv run pip install bpython
### Pylint
> Pylint is a tool that checks for errors in Python code, tries to enforce a
> coding standard and looks for code smells.
See
`pylintrc`
for configuration. Be aware that pylint is slow to do its work,
just be patient.
To check for errors:
pipenv run pylint gargantext
To get a full report with a dependency graph:
pipenv run pylint -r y gargantext
# To review a particular module pass its folder to pylint:
pipenv run pylint -r y gargantext/backend
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment