Skip to content

Instantly share code, notes, and snippets.

View bkhanale's full-sized avatar
🏠
Working from home

Bhushan Khanale bkhanale

🏠
Working from home
View GitHub Profile
import os.path
from coalib.bears.GlobalBear import GlobalBear
from coalib.results.Result import Result, RESULT_SEVERITY
from sarge import capture_both
from dependency_management.requirements.PipRequirement import PipRequirement
class RequirementsCheckBear(GlobalBear):
import re
from queue import Queue
from sarge import run, Capture
from contextlib import suppress
from bears.general.AnnotationBear import AnnotationBear
from coalib.bears.LocalBear import LocalBear
from coalib.results.Result import Result
@bkhanale
bkhanale / PEP8Bear.py
Last active August 19, 2019 11:21
Pycodestyle - PEP8Bear Integration.
import autopep8
import logging
from bears.python.PycodestyleBear import PycodestyleBear
from coalib.bearlib.spacing.SpacingHelper import SpacingHelper
from coalib.bears.LocalBear import LocalBear
from coalib.results.Diff import Diff
from coalib.results.Result import Result
from coalib.settings.Section import Section
from coalib.settings.Setting import Setting
@bkhanale
bkhanale / settings.react.json
Created September 23, 2020 08:43
VS Code React Config - ESLint
{
"[javascript]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.formatOnSave": false
},